/* Sections */
.main {
  /* none */
}

.header {
  background-color: var(--color-black);
  padding: 1.6rem 0;
}

.logo {
  display: inline-block;
  width: 13rem;
  height: 3.3rem;
  margin-bottom:5rem;
}
.logo img{
  width:18rem;
  height:auto;
}

.hero {
  background-color: var(--hero-color);
  min-height: 10.95rem;
  position: relative;
  overflow: hidden;
}



.hero-content {
  /* none */
}

.hero-content .paragraph {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.6rem;
  max-width: 50rem;
}

.contact {
  background-color: var(--color-black);
  padding: 6rem 0;
}

.contact__form {
  border-top: 8px solid var(--color-green);
  background-color: var(--color-white);
  padding: 2rem;
  max-width: 42.6rem;
  min-height: 33.7rem;
}

.contact__form .paragraph {
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 400;
}

.cards {
  padding: 5rem 0 5.7rem 0;
}

.cards .cards__wrapper {
  display: flex;
  /* justify-content: space-between; */
  flex-wrap: wrap;
  gap: 2rem;
}

.cards__description .h2 {
  margin-bottom: 3rem;
}

.card {
  padding: 3rem;
  background-color: var(--color-blue);
  min-width: calc(35rem - 40px);
}

.card .h4 {
  font-size: 2.4rem;
  line-height: 2.8rem;
  font-weight: 300;
  margin-bottom: 1.8rem;
  text-align: center;
}

.card .paragraph {
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin-bottom: 0;
  font-weight: 100;
}

@media (max-width: 850px) {
  .card.card--1,
  .card.card--2,
  .card.card--3 {
    width: 100%;
  }
}

@media (max-width: 635px) {
  .card.card--1,
  .card.card--2,
  .card.card--3 {
    width: 100%;
  }
}

.quote {
  padding: 3.9rem 0 5.5rem;
  background-color: var(--color-light-grey);
}

.quote__wrapper {
  max-width: 79.2rem;
  margin: 0 auto;
}

.quote q {
  font-size: 2.4rem;
  line-height: 3.6rem;
}

.quote small {
  display: block;
  text-align: right;
  font-size: 1.8rem;
  font-weight: 500;
}

.callout {
  padding: 5.3rem 2.2rem;
  background-color: var(--color-green);
}

.callout__wrapper {
  max-width: 68.8rem;
  margin: 0 auto;
  text-align: center;
}

.button.button-primary {
  color: var(--color-white);
  background-color: var(--color-black);
  font-size: 1.5rem;
  font-weight: 400;
  padding: 1.2rem 4rem;
  line-height: 1;
  text-transform: initial;
  height: auto;
  white-space: initial;
  border-radius: 0;
  border: 1px solid var(--color-black);
  transition: 0.3s ease;
}

.button.button-primary:hover {
  background-color: transparent;
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

.hero .button.button-primary{
  background-color: var(--color-green);
  color: var(--color-black);
  border-color:var(--color-green);
}

.hero .button.button-primary:hover{
  background-color: var(--color-white);
  border-color:var(--color-black);
}

.feature {
  padding: 7.5rem 0;
}

.feature-content {
  max-width: 96.4rem;
  margin: 0 auto;
}

.vendors {
  background-color: var(--color-black);
  padding: 7.5rem 0;
}

.vendors-wrapper {
  max-width: 96.4rem;
}

.footer {
  padding: 4.3rem 2rem;
  background-color: var(--color-black);
  color: var(--color-white);
}

.footer .footer__wrapper {
  margin: 0 auto;
  max-width: 130rem;
}

.footer__logos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer .logo,
.footer .klas-logos {
  margin-bottom: 4rem;
}

.footer .klas-logos {
  width: 100%;
  max-width: 33.3rem;
}

.footer-copyright {
}

.footer-copyright__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  font-size: 1.2rem;
  margin-bottom: 6.5rem;
}

.footer-copyright__item.item-6 .footer-link {
  border-right: none;
  padding-right: 0;
}

.footer-copyright__item.item-1 .footer-link {
  padding-left: 0;
}

.footer-link {
  padding: 0 2.5rem;
  border-right: 1px solid var(--color-white);
  color: var(--color-white);
  text-decoration: none;
  line-height: 0;
}

.footer-link:hover {
  color: inherit;
  text-decoration: underline;
}

.footer-copyright__rights {
  font-size: 1.2rem;
  line-height: 1.6rem;
}

/* Forms */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  width: 100%;
}

/* Media Queries
â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“â€“ */

/* Larger than mobile */
@media (min-width: 320px) {
  .hero {
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero__img {
    inset: 0 0 auto 0;
  }
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
  .cards .column,
  .cards .columns {
    margin-left: 0;
  }
  .card {
    min-width: 35rem;
  }

  .hero__img {
    inset: 0;
  }
}

.hero .logo{
  position: fixed;
  top:15px;
}

@media screen and (min-width:767px){
  .hero {
    padding: 6rem 0;
  }
  .hero__img {
    position: absolute;
    inset: 0;
  }
  .hero .logo{
    position: static;
  }
}

/* Larger than tablet */
@media (min-width: 750px) {
  .footer__logos {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-copyright__list {
    font-size: 1.4rem;
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {
  .header {
    padding: 3.3rem 0;
  }
  .logo {
    width: 18rem;
    height: 5.4rem;
  }
  .hero {
    padding: 3.2rem 0;
  }
}

/* Larger than Desktop HD */
@media (min-width: 1680px) {
  .hero {
    padding-block: 3.2rem;
  }
}

.LV_valid {
  display: none;
}

.LV_invalid{
  color:red !important;
}

li{
  margin-bottom:0;
}

.form__info p, .form__info li {
  font-size: 1.8rem;
}

h1{
  line-height:1.2;
}

.single-checkbox-row{
  display:flex;
  align-items: flex-start;
}

.single-checkbox-row input[type="checkbox"]{
  margin-right:10px;
}

.checkbox-aligned{
  line-height:1.2;
  font-size:1.4rem;
}

form{
  margin-bottom:0;
}

.button, button, input[type="submit"], input[type="reset"], input[type="button"]{
  margin-bottom:0;
}

@media (min-width: 550px) {
  .contact .five.columns {
      width: 43.333333%;
  }
}